home *** CD-ROM | disk | FTP | other *** search
/ MacHack 1999 / MacHack 1999.toast / The Hacks / NetPokerForMacOSX_Server / HoldEmHigh / Messager.h < prev    next >
Encoding:
C/C++ Source or Header  |  1999-06-25  |  387 b   |  20 lines

  1. @interface Messager:NSWindowController
  2. {
  3.     IBOutlet NSTextField *messageField;
  4.     IBOutlet NSTextView *textView;
  5.  
  6.     NSString *recipient;
  7. }
  8. // shared instance is for Public
  9. //
  10.  
  11. + (id)sharedInstance;
  12.  
  13. + (id)messagerWithRecipient:(NSString *)to;
  14. + (id)messagerWithRecipient:(NSString *)to;
  15. - (IBAction)sendMessageAction:(id)sender;
  16.  
  17. @end
  18.  
  19. extern NSString *MessageReceivedNotification;
  20.